home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha 2008 January / Cybermycha 1_2008.iso / Data.cab / _E14223FA612849F8A18CCE2A1A559218 < prev    next >
Encoding:
Text File  |  2004-03-17  |  928 b   |  32 lines

  1. regc4f( 5, %daycolor_r, %daycolor_g, %daycolor_b, %daycolor_a )
  2. regc4f( 7, %ambient_r, %ambient_g, %ambient_b, %ambient_a )
  3. pshader("
  4.  
  5. ps_1_4
  6.  
  7. texld r0, t0    ;RGB=terrain colormap, A=terrain lightmap
  8. texld r1, t1    ;details
  9. texld r2, t2    ;world cubemap
  10. texld r3, t3    ;detailmasks
  11. texld r4, t4    ;clouds
  12.  
  13.  
  14.  
  15.     dp3 r1.rgb, r1, r3                ;Mul details with masks                = DETAILS
  16.     +mul r1.a, 1-r4.a, r0.a            ;clouds shadow * terrain lightmap    = CLOUDS&LIGHTMAP
  17.  
  18.     mad r0.rgb, r2, r3.a, r0        ;cut cubemap with mask & add SPECCOLOR    = COLOR&ENV
  19.     +mad_sat r1.a, r1.a, c7.b, c7.a    ;ambient + CLOUDS&LIGHTMAP            = LIGHTING
  20.  
  21.     mul r0.rgb, r0, c5                ;COLOR&ENV * light color            = TERRAINDAY
  22.     +mul r0.a, r1.a, r1.b            ;mul ALL_DETAILS and LIGHTING        = LIGHT&DETAILS
  23.  
  24.     ;mul r0, r0, r0.a                ;TERRAINDAY * LIGHT&DETAILS            = ALL
  25.  
  26.     ; hack for gffx 5900u
  27.     mov    r1, r0
  28.     mul    r0, r1, r0.a                ;TERRAINDAY * LIGHT&DETAILS            = ALL
  29.  
  30. ")
  31.  
  32.